home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1986-12-15 | 2.6 KB | 59 lines |
- 100 LPRINT TAB(10);"Changes to Documentation Programs to support Other Printers."
- 110 LPRINT
- 120 LPRINT TAB(10);"Each of the documentation programs contains its own text"
- 130 LPRINT TAB(10);"processor. There is a determination of whether each line"
- 140 LPRINT TAB(10);"is a command (begun with a period) or is normal text."
- 150 LPRINT TAB(10);"If it is a command, then additional processing is done,"
- 160 LPRINT TAB(10);"including the use of some of the characterists of the"
- 170 LPRINT TAB(10);"printer."
- 180 LPRINT
- 190 LPRINT TAB(10);"The six documentation programs which produce the User's"
- 200 LPRINT TAB(10);"Manual are identical in their use of the built-in text"
- 210 LPRINT TAB(10);"processor, in that the same BASIC line-numbers are used"
- 220 LPRINT TAB(10);"for the same function. The one documentation program"
- 230 LPRINT TAB(10);"which produces the Program Directory contains the same"
- 240 LPRINT TAB(10);"functions, but at different line numbers."
- 250 LPRINT
- 260 LPRINT TAB(10);"Following are the locations of the line numbers which"
- 270 LPRINT TAB(10);"must be considered for changes to other printers."
- 280 LPRINT
- 290 LPRINT TAB(10);" User's Program"
- 300 LPRINT TAB(10);" Manual Directory Function of the line"
- 310 LPRINT TAB(10);" ------- --------- ------------------------"
- 320 LPRINT TAB(10);"Bottom of"
- 330 LPRINT TAB(10);"Each Page"
- 340 LPRINT TAB(10);" 770 990 Page Eject"
- 350 LPRINT
- 360 LPRINT TAB(10);"Head 1"
- 370 LPRINT TAB(10);"Processor"
- 380 LPRINT TAB(10);" 1020 1240 Set Expanded Print"
- 390 LPRINT TAB(10);" 1030 1250 Adjust Print Position"
- 400 LPRINT TAB(10);" 1040 1260 Print the Expanded Text"
- 410 LPRINT TAB(10);" 1050 1270 Return to Normal Printing"
- 420 LPRINT
- 430 LPRINT TAB(10);"Head 2"
- 440 LPRINT TAB(10);"Processor"
- 450 LPRINT TAB(10);" 1130 1350 Set Emphasized Printing"
- 460 LPRINT TAB(10);" 1140 1360 Print Emphasized"
- 470 LPRINT TAB(10);" 1150 1370 Return to Normal Printing"
- 480 LPRINT
- 490 LPRINT TAB(10);"Head 3"
- 500 LPRINT TAB(10);"Processor"
- 510 LPRINT TAB(10);" 1240 1460 Set Emphasized Printing"
- 520 LPRINT TAB(10);" 1250 1470 Print Emphasized"
- 530 LPRINT TAB(10);" 1260 1480 Return to Normal Printing"
- 540 LPRINT
- 550 LPRINT TAB(10);"End-of-file"
- 560 LPRINT TAB(10);"Processor"
- 570 LPRINT TAB(10);" 1390 1610 Page Eject when finished."
- 580 LPRINT
- 590 LPRINT TAB(10);"Packed"
- 600 LPRINT TAB(10);"Processor"
- 610 LPRINT TAB(10);" 1640 1850 Set Compressed Printing"
- 620 LPRINT TAB(10);" 1650 1860 Change Page Width"
- 630 LPRINT TAB(10);" 1660 1870 Print Compressed"
- 640 LPRINT TAB(10);" 1670 1880 Return to Normal Printing"
- 650 LPRINT TAB(10);" 1680 1890 Restore Page Width"
- 660 FOR I = 1 TO 10 : LPRINT : NEXT I
- 670 END
-